home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / fputc.c,v < prev    next >
Text File  |  1991-12-02  |  4KB  |  147 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.07.21.10.49.10;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.10.16.23.47;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.02.19.57.20;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Return the character written, not 0.
  32. @
  33. text
  34. @/* 
  35.  * fputc.c --
  36.  *
  37.  *    Source code for the "fputc" library procedure.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: fputc.c,v 1.1 88/06/10 16:23:47 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include "stdio.h"
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * fputc --
  59.  *
  60.  *    This procedure outputs a character onto a stream.  It is a
  61.  *    procedural version of the putc macro, and also gets
  62.  *    called by putc when the output buffer has filled.
  63.  *
  64.  * Results:
  65.  *    The return value is EOF if an error occurred while writing
  66.  *    to the stream, or if the stream isn't writable.  Otherwise
  67.  *    it's the value of the character written.
  68.  *
  69.  * Side effects:
  70.  *    Characters are buffered up for stream.
  71.  *
  72.  *----------------------------------------------------------------------
  73.  */
  74.  
  75. int
  76. fputc(c, stream)
  77.     char c;                /* Character to output. */
  78.     register FILE *stream;        /* Stream on which to output. */
  79. {
  80.     if ((stream->status != 0) || !(stream->flags & STDIO_WRITE)) {
  81.     return EOF;
  82.     }
  83.  
  84.     /*
  85.      * This is tricky because of two things:
  86.      *    a) The stream could be used both for reading and writing.  If
  87.      *       the last access was a read access, or if the stream has never
  88.      *         been used for writing, "turn the stream around" before doing
  89.      *         the write. 
  90.      *    b) The stream may be unbuffered (want to output each character
  91.      *       as it comes).  To handle this, call the writeProc as soon
  92.      *       as the buffer fills, rather than delaying until a character
  93.      *         arrives that doesn't fit.
  94.      *      c) Keep the notion of "writeCount" separate from the notion of
  95.      *         "all buffer space in use".  That way, the stream's I/O mgr
  96.      *         can arrange for itself to be called anytime it wants (even if
  97.      *         the buffer isn't full) just by making writeCount 1.
  98.      */
  99.  
  100.     if (stream->writeCount == 0) {
  101.     stream->readCount = 0;
  102.     stream->lastAccess = stream->buffer - 1;
  103.     }
  104.  
  105.     stream->writeCount--;
  106.     stream->lastAccess++;
  107.     *(stream->lastAccess) = c;
  108.     if ((c == '\n') && (stream->flags & STDIO_LINEBUF)) {
  109.     (*stream->writeProc)(stream, 1);
  110.     } else if (stream->writeCount <= 0) {
  111.     (*stream->writeProc)(stream, 0);
  112.     }
  113.     if (stream->status != 0) {
  114.     return EOF;
  115.     }
  116.     return (unsigned char) c;
  117. }
  118. @
  119.  
  120.  
  121. 1.2.1.1
  122. log
  123. @Initial branch for Sprite server.
  124. @
  125. text
  126. @d17 1
  127. a17 1
  128. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/fputc.c,v 1.2 88/07/21 10:49:10 ouster Exp $ SPRITE (Berkeley)";
  129. @
  130.  
  131.  
  132. 1.1
  133. log
  134. @Initial revision
  135. @
  136. text
  137. @d17 1
  138. a17 1
  139. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  140. d33 2
  141. a34 1
  142.  *    to the stream, or if the stream isn't writable.
  143. d83 1
  144. a83 1
  145.     return 0;
  146. @
  147.